home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
ocucmnd.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
828b
|
22 lines
/* RCSVER $Id: ocucmnd.sql,v 1.3 1999-02-24 14:58:19-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
*
* Name: ocucmnd.sql
* Date: 01/18/1999
* memo: Randy Wood
* Description: Create the ocucmnd table. This table contains all commands
* that can be associated with an OCU key.
* Changes:
************************************************************************* */
CREATE TABLE ocucmnd
(
id NUMBER(38), /* ID of command */
sec_level NUMBER(38), /* Security level associated */
descr VARCHAR2(20), /* Description of command */
config_num NUMBER(38)
CONSTRAINT ref_ocucmnd REFERENCES configset(num)
ON DELETE CASCADE,
CONSTRAINT pk_ocucmnd PRIMARY KEY (id, config_num)
);